home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / vsrc.tar / voyager7_src / modes.c < prev    next >
C/C++ Source or Header  |  1991-02-27  |  428b  |  31 lines

  1. /*
  2. // Abstract:
  3. //    MODES---Modes
  4. //
  5. //    The Modes module declares the global options database used in
  6. //    Voyager.
  7. //
  8. // Author:
  9. //    Derek S. Nickel
  10. //
  11. // Creation date:
  12. //    10 January 1991
  13. //
  14. // History:
  15. // V01-001    Derek S. Nickel        10-JAN-1991
  16. //    Original.
  17. //
  18. */
  19.  
  20. #include "modes.h"
  21.  
  22. modes_t modes = {
  23.     1,    /* follow  */
  24.     0,    /* info    */
  25.     10,    /* limit   */
  26.     1,    /* pager   */
  27.     1,    /* prompt  */
  28.     1,    /* stop    */
  29.     0    /* unmode  */
  30. };
  31.